home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 7 / BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso / Files / Prog / M / MacOberon241.cpt / MacOberon 2.4(1) / Hex.Tool (.txt) < prev    next >
Oberon Text  |  1991-10-17  |  2KB  |  38 lines

  1. Syntax10.Scn.Fnt
  2. Syntax10i.Scn.Fnt
  3. Hex.Open ^
  4. Hex.Open ~
  5. -----------------------------------------------------------
  6. File inspector / editor (cas 8-Aug-90)
  7. Displays arbitrary files in three columns: relative address (position in file),
  8. numerical dump, and ASCII dump.  Bases of address and numerical
  9. columns (default is hexadecimal) and the formatting of the numerical
  10. column can be set.  Inspection of open files appearing as addresses within
  11. Trap viewers is possible.
  12. Hex.Open follows the usual parameter conventions and also accepts any
  13. of the following options (in any order; lower case option selector are ok):
  14.     /A <integer>    base for addresse column (default 16)
  15.     /B <integer>    base for numeric column (default 16)
  16.     /L <integer>    bytes per line (default 16)
  17.     /G <integer>    bytes per group (default 4)
  18. Additionally, Hex.Open takes integers instead of names as main
  19. parameter.  Such an integer is interpreted as the address of a file and
  20. thereby inspection of opened files is possible.  This is mainly useful for
  21. inspection of files referenced in a Trap viewer.
  22. In the menu bar two additional commands are available:
  23. Hex.Search performs a textual search in the ASCII column; otherwise like
  24. Edit.Search.  Hex.Store writes an edited file back to disk.  Warning: the
  25. file editor does not automatically generate backup file copies!
  26. When copying selected stretches in a file editor viewer, the semantics of
  27. what is copied are different depending on the selection begin and end.
  28. If begin and end of the selection cover digits in the numerical column,
  29. only part of the numerical column (no addresses and no ASCII parts) are
  30. copied.  Likewise, if begin and end of the selection cover characters in
  31. the ASCII column, only part of the ASCII column is copied.  For all other
  32. cases, the whole selction is copied.
  33. When deleting using the mouse right-left interclick, the selection rules
  34. apply. Numeric selections cause deletion to zero, ASCII selections cause
  35. deletion to blanks.
  36. Cursor, TAB, CR, LF, BS, and DEL keys are supported.  The caret is always
  37. forced to legal positions.
  38.